:root,
html {
    font-size: calc(0.417vw + 8px);
    color: #000;
}

/* img {
    width: 100%;
} */

/* 公共样式 */
.more-btn a {
    position: relative;
    z-index: 3;
    display: inline-block;
    padding: 20px 0;
    padding-left: 30px;
    padding-right: 60px;
    border: 1px solid #fff;
    font-size: 14px;
    color: #fff;
    transition: all .5s;
}

.more-btn a::before {
    content: '';
    display: inline-block;
    width: 10px;
    height: 10px;
    margin-right: 10px;
    background-color: #fff;
    transition: all .5s;
}

.more-btn.blue-btn a {
    color: #0a50a0;
    border-color: #0a50a0;
    transition: all .5s;
}

.more-btn.blue-btn a::before {
    background-color: #0a50a0;
}

.more-btn.blue-btn a:hover {
    background-color: #0a50a0;
    color: #fff;
}

.more-btn.blue-btn a:hover::before {
    background-color: #fff;
}

.more-btn a:hover {
    background-color: #fff;
    color: #0a50a0;
}

.more-btn a:hover::before {
    background-color: #0a50a0;
}

.serial-num {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border: 1px solid #0a50a0;
    border-radius: 5px;
    font-size: 14px;
    font-weight: bold;
    color: #0a50a0;
}

.serial-num::after {
    content: '';
    position: absolute;
    right: -7px;
    top: -1px;
    width: 15px;
    height: 100%;
    border: 1px solid #0a50a0;
    border-radius: 0 5px 5px 0;
    border-left: none;
}

.gray-border {
    border-color: #999999;
    color: #999;
}

.gray-border.serial-num::after {
    border-color: #999999;
}

.header-container {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 5;
    width: 100%;
    height: 80px;
}

.header-container .top-nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 80px;
    padding: 0 40px;
    border-bottom: 1px solid #ebebeb;
    background-color: #fff;
}

.header-container .top-nav-container .left-content {
    width: 179px;
}

.header-container .top-nav-container .left-content img {
    width: 100%;
}

.header-container .top-nav-container .left-content a {
    display: inline-block;
}

.header-container .top-nav-container .middle-content {
    display: flex;
    height: 100%;
}

.header-container .top-nav-container .middle-content li.first-floor>a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    padding: 0 40px;
}

.header-container .top-nav-container .middle-content li.first-floor>a:hover {
    color: #0a50a0;
}

.header-container .top-nav-container .right-content {
    display: flex;
    height: 100%;
}

.header-container .top-nav-container .right-content .put-icon {
    display: none;
}

.header-container .top-nav-container .lang-icon,
.header-container .top-nav-container .search-icon,
.header-container .top-nav-container .login-icon {
    height: 100%;
    cursor: pointer;
}

.header-container .top-nav-container .lang-icon a,
.header-container .top-nav-container .search-icon a,
.header-container .top-nav-container .login-icon a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
    padding: 0 15px;
}

.header-container .top-nav-container .lang-icon:hover .default-icon,
.header-container .top-nav-container .search-icon:hover .default-icon,
.header-container .top-nav-container .login-icon:hover .default-icon {
    display: none;
}

.header-container .top-nav-container .lang-icon:hover .put-icon,
.header-container .top-nav-container .search-icon:hover .put-icon,
.header-container .top-nav-container .login-icon:hover .put-icon {
    display: block;
}

.header-container .top-nav-container .login-icon.is-logined {
    position: relative;
}

.header-container .top-nav-container .login-icon .user-message {
    display: none;
    position: absolute;
    bottom: 0;
    right: 0;
    width: 120px;
    padding: 20px 10px;
    border-radius: 20%;
    background-color: #fff;
    box-shadow: 0 1px 3px;
    transform: translate(25px, calc(100%));
    font-size: 14px;
    text-align: center;
    transition: transform .5s;
    cursor: default;
}

.header-container .top-nav-container .login-icon .user-message .name {
    font-size: 16px;
}

.header-container .top-nav-container .login-icon .user-message .name:hover {
    color: #1090cb;
}

.header-container .top-nav-container .login-icon .user-message.show-type {
    transform: translate(25px, calc(100% - 10px));
}

.header-container .top-nav-container .login-icon .user-message .out-btn {
    padding: 5px 15px;
    margin-top: 15px;
    background-color: #f86060;
    color: #fff;
    transition: all .5s;
    cursor: pointer;
}

.header-container .top-nav-container .login-icon .user-message .out-btn:hover {
    background-color: #f83939;
}

.header-container .bottom-nav-container {
    position: absolute;
    top: 80px;
    left: 50%;
    transform: translateX(-50%);
    display: none;
    width: 95%;
    padding: 0 40px;
    background-color: #fff;
    border-radius: 0 0 35px 35px;
}

.header-container .bottom-nav-item {
    display: flex;
}

.header-container .bottom-nav-container .bottom-left-content {
    flex: 1;
    display: flex;
    justify-content: space-between;
    padding: 40px 0;
}

.header-container .bottom-nav-container .pic-text {
    position: relative;
    /* width: 590px; */
    /* height: 310px; */
    max-height: 300px;
    flex: 1;
    overflow: hidden;
    border-radius: 40px;
}

.header-container .bottom-nav-container .pic-text a.wfEditorMode {
    position: absolute;
    top: 30%;
    left: 0;
}

.header-container .bottom-nav-container .pic-text img {
    /* height: 100%; */
    width: 100%;
    min-height: 100%;
    object-fit: cover;
}

.header-container .bottom-nav-container .pic-text .s-title {
    position: absolute;
    bottom: 30px;
    left: 30px;
    font-size: calc(24rem / 16);
    font-weight: bold;
    /* color: #000; */
    color: #fff;
}

.header-container .bottom-nav-container .bottom-left-content .nav-content {
    margin-left: 45px;
}

.header-container .bottom-nav-container .nav-content li a {
    position: relative;
    display: inline-block;
    margin-bottom: 1.042vw;
    font-size: calc(16rem / 16);
    line-height: calc(30rem / 16);
    cursor: pointer;
}

.header-container .bottom-nav-container .nav-content li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #0a50a0;
    transition: all .5s;
}

.header-container .bottom-nav-container .nav-content li a:hover {
    color: #0a50a0;
}

.header-container .bottom-nav-container .nav-content li a:hover::after {
    width: 100%;
}

.header-container .bottom-nav-container .nav-content li.active a {
    color: #0a50a0;
}

.header-container .bottom-nav-container .nav-content li.active a::after {
    width: 100%;
}

.header-container .bottom-nav-container .bottom-right-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-width: 50%;
    padding: 40px 0;
    padding-left: 40px;
    margin-left: 40px;
    border-left: 1px solid #ebebeb;
}

.header-container .bottom-nav-container .bottom-right-content .top-title {
    width: 100%;
    padding-bottom: 30px;
    padding-left: 1.042vw;
    border-bottom: 1px solid #ebebeb;
    font-size: calc(18rem / 16);
    font-weight: bold;
    color: #000;
}

.header-container .bottom-nav-container .bottom-right-content .nav-son {
    /* flex: 1; */
    display: none;
    flex-wrap: wrap;
    /* flex-direction: column; */
    width: 100%;
    height: 200px;
    overflow-y: auto;
    margin-top: 30px;
}

/* .header-container .bottom-nav-container .bottom-right-content .nav-son i {
    display: inline-block;
    padding-right: 5px;
    font-weight: bold;
    color: #007aff;
} */

.header-container .bottom-nav-container .bottom-right-content .nav-son.active {
    display: flex;
}

/* 滚动条整体 */
.header-container .bottom-nav-container .bottom-right-content .nav-son::-webkit-scrollbar {
    height: 20px;
    width: 2px;
}

/* 两个滚动条交接处 -- x轴和y轴 */
/* .header-container .bottom-nav-container .bottom-right-content .nav-son::-webkit-scrollbar-corner {
    background-color: transparent;
} */

/* 滚动条滑块 */
.header-container .bottom-nav-container .bottom-right-content .nav-son::-webkit-scrollbar-thumb {
    border-radius: 2px;
    -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
    background: rgb(10, 80, 160);
}

/* 滚动条轨道 */
.header-container .bottom-nav-container .bottom-right-content .nav-son::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    background: #ededed;
}

.header-container .bottom-nav-container .bottom-right-content li {
    width: calc(50% - 1.042vw);
    margin-bottom: calc(1.250vw - 4px);
}

.header-container .bottom-nav-container .bottom-right-content li:nth-child(odd) {
    margin-left: 1.042vw;
}

.header-container .bottom-nav-container .bottom-right-content li a:hover {
    color: #0a50a0;
}

.header-container .phone-menu {
    display: none;
    position: absolute;
    top: 50%;
    right: 5px;
    transform: translateY(-50%);
    height: 100%;
}

.header-container .phone-menu img {
    height: 90%;
}

.phone-left {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    transform: translateX(-100%);
    z-index: 8;
    width: 40%;
    height: 100vh;
    background-color: rgba(0, 0, 0, .5);
    transition: all .5s;
}

.phone-right {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    transform: translateX(100%);
    z-index: 8;
    width: 60%;
    height: 100vh;
    background-color: #fff;
    transition: all .5s;
}

.phone-right .close-btn {
    position: relative;
    height: 40px;
    padding: 5px;
}

.phone-right .close-btn img {
    height: 100%;
    margin-left: auto;
}

.phone-right .nav-list {
    position: relative;
    width: 100%;
    height: 100%;
    border-top: 1px solid #c1c1c1;
}

.phone-right .nav-list .more-nav {
    height: 100%;
}

.phone-right .nav-list .more-nav img {
    height: 15px;
}

.phone-right .nav-list .first-list {
    display: inline-flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    border-bottom: 1px solid #c1c1c1;
}

.phone-right .nav-list .first-list.phone-logout {
    display: none;
}

.phone-right .nav-list .first-list.phone-username {
    display: none;
}

.phone-right .nav-list .first-list.phone-logout a {
    background-color: #f86060;
    color: #fff;
}

.phone-right .nav-list li {
    border-bottom: 1px solid #c1c1c1;
}

.phone-right .nav-list a {
    display: inline-block;
    flex: 1;
    padding: 10px 0;
    padding-left: 15px;
    font-size: 14px;
}

.phone-right .nav-list .second-list {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    transform: translateX(100%);
    transition: all .5s;
}

.phone-right .nav-list .second-list li {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.phone-right .nav-list .third-list {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    padding-bottom: 40px;
    overflow: auto;
    background-color: #fff;
    transform: translateX(100%);
    transition: all .5s;
}

.phone-right .nav-list .third-list li {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.phone-right .nav-list.is-logined .first-list.phone-login {
    display: none;
}

.phone-right .nav-list.is-logined .first-list.phone-logout {
    display: flex;
}

.phone-right .nav-list.is-logined .first-list.phone-username {
    display: flex;
}



/* 侧边栏 */
.sidebar-container {
    position: fixed;
    top: 40%;
    right: 1%;
    z-index: 4;
}

.sidebar-container .put-icon {
    display: none;
}

.sidebar-container .sidebar-main {
    position: relative;
    z-index: 2;
    border-radius: 30px;
    /* overflow: hidden; */
    background-color: #fff;
    box-shadow: 0px 1px 5px #c1c1c1;
}

.sidebar-container .sidebar-main .name {
    margin-top: 5px;
}

.sidebar-container .sidebar-item {
    position: relative;
}

.sidebar-container .sidebar-item a {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15px 15px;
    font-size: 14px;
    color: #666;
    text-align: center;
    transition: all .5s;
}

.sidebar-container .sidebar-item .tel-hover {
    position: absolute;
    top: 50%;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    /* height: 100%; */
    transform: translate(-100%, -50%);
    background-color: #fff;
    border-top-left-radius: 40px;
    border-bottom-left-radius: 40px;
    font-size: 18px;
    width: 0;
    overflow: hidden;
    transition: all .5s;
}

.sidebar-container .sidebar-item .tel-hover p {
    padding: 20px 0;
    padding-left: 30px;
    padding-right: 10px;
    white-space: nowrap;
}

.sidebar-container .sidebar-item.tel:hover .tel-hover {
    width: 200px;
}

.sidebar-container .sidebar-item:nth-child(1) a {
    padding-top: 20px;
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
}

.sidebar-container .sidebar-item:nth-child(3) a {
    padding-bottom: 20px;
    border-bottom-left-radius: 30px;
    border-bottom-right-radius: 30px;
}

.sidebar-container .sidebar-item a:hover {
    background-color: #1155a3;
    color: #fff;
}

.sidebar-container .sidebar-item a:hover .default-icon {
    display: none;
}

.sidebar-container .sidebar-item a:hover .put-icon {
    display: block;
}

.sidebar-container .back-top {
    padding-top: 20px;
    transform: translateY(-100%);
    transition: all .5s;
}

.sidebar-container .back-up {
    display: none;
}

.sidebar-container .back-top .inside-icon,
.sidebar-container .back-up .inside-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background-color: #fff;
    box-shadow: 0px 1px 5px #c1c1c1;
    cursor: pointer;
}

.sidebar-container .back-top .inside-icon:hover,
.sidebar-container .back-up .inside-icon:hover {
    background-color: #1155a3;
    transition: all .5s;
}

.sidebar-container .back-top .inside-icon:hover .default-icon,
.sidebar-container .back-up .inside-icon:hover .default-icon {
    display: none;
}

.sidebar-container .back-top .inside-icon:hover .put-icon,
.sidebar-container .back-up .inside-icon:hover .put-icon {
    display: block;
}

.sidebar-container .back-up {
    margin-bottom: 15px;
}

.sidebar-container .back-up .inside-icon img {
    width: 40%;
    /* height: 50%; */
}

/* 尾部 */
.footer-container {
    position: relative;
    padding-top: 6.771vw;
    padding-bottom: 3.125vw;
    background-color: #f0f3fe;
}

.footer-container a:hover {
    color: #083d7e;
}

.footer-container .top-container {
    position: relative;
    z-index: 2;
    display: flex;
    width: 60%;
    margin: 0 auto;
    font-size: 14px;
}

.footer-container .top-container .left-content {
    flex: 1;
    display: flex;
    justify-content: space-between;
}

.footer-container .top-container .left-content ul {
    max-width: 40%;
    min-width: 20%;
}

.footer-container .top-container .left-content .b-nav {
    margin-bottom: calc(0.521vw + 15px);
    font-size: 16px;
    font-weight: bold;
}

.footer-container .top-container .left-content .b-nav a {
    color: #000;
}

.footer-container .top-container .left-content li {
    margin-bottom: 0.521vw;
}

.footer-container .top-container .right-content {
    margin-left: 10%;
    font-size: 14px;
    text-align: right;
}

.footer-container .top-container .right-content .phone {
    margin-top: 1.042vw;
    font-size: calc(22rem / 16);
    font-weight: bold;
}

.footer-container .top-container .right-content .phone::before {
    content: '';
    display: inline-block;
    width: 19px;
    height: 19px;
    margin-right: 15px;
    background: url('../images/icon_phone.png') no-repeat center/cover;
}

.footer-container .top-container .right-content .attention {
    margin-top: calc(1.354vw - 1px);
}

.footer-container .top-container .code-container {
    display: flex;
    justify-content: flex-end;
    margin-top: calc(0.833vw - 1px);
}

.footer-container .top-container .code-container>div>img:hover+.qr {
    opacity: 1;
}

.footer-container .top-container .code-container .wx-code,
.footer-container .top-container .code-container .dy-code {
    position: relative;
    cursor: pointer;
}

.footer-container .code-container .qr {
    opacity: 0;
    display: flex;
    position: absolute;
    bottom: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 100px;
    background-color: #fff;
    border-radius: 10px;
    transition: all .5s;
}

.footer-container .code-container .qr::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 100%);
    width: 0;
    height: 0;
    border: 10px solid transparent;
    border-top-color: #fff;
}

.footer-container .code-container .qr img {
    width: 90%;
    height: 90%;
    margin: auto;
}

.footer-container .top-container .dy-code {
    margin-left: 15px;
}

.footer-container .bottom-container {
    position: relative;
    z-index: 2;
    margin-top: 7.813vw;
    font-size: 14px;
    color: #666;
}

.footer-container .bottom-container .top-content {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 5px;
}

.footer-container .bottom-container .top-content a {
    margin: 0 10px;
}

.footer-container .bottom-container .bottom-content {
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-container .bg {
    position: absolute;
    top: 0;
    right: 0;
    height: 85%;
}

.footer-container .bg img {
    height: 100%;
}

.load-container {
    position: absolute;
    top: 0;
    left: 0;
    display: none;
    width: 100vw;
    height: 100vh;
    background-color: rgba(255, 255, 255, .5);
}

.load-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    margin: 0 auto;
}

.load-effect div {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-animation: load 2.08s linear infinite;
}

.load-effect div span {
    position: absolute;
    left: 50%;
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgb(217, 223, 217);
    /* margin-top: -10px;
    margin-left: -10px; */
}

.login-form .load-container {
    position: absolute;
    top: 0;
    left: 0;
    display: none;
    width: 100%;
    height: 100%;
    border-radius: 40px;
    background-color: rgba(255, 255, 255, .5);
}

.login-form .load-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    margin: 0 auto;
    margin-top: 0;
}

.login-form .load-effect div {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-animation: load 2.08s linear infinite;
}

.login-form .load-effect div span {
    position: absolute;
    left: 50%;
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgb(217, 223, 217);
    /* margin-top: -10px;
    margin-left: -10px; */
}

@-webkit-keyframes load {
    0% {
        -webkit-transform: rotate(0deg);
    }

    10% {
        -webkit-transform: rotate(45deg);
    }

    50% {
        opacity: 1;
        -webkit-transform: rotate(160deg);
    }

    62% {
        opacity: 0;
    }

    65% {
        opacity: 0;
        -webkit-transform: rotate(200deg);
    }

    90% {
        -webkit-transform: rotate(340deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
    }

}

.load-effect div:nth-child(1) {
    -webkit-animation-delay: 0.2s;
}

.load-effect div:nth-child(2) {
    -webkit-animation-delay: 0.4s;
}

.load-effect div:nth-child(3) {
    -webkit-animation-delay: 0.6s;
}

.load-effect div:nth-child(4) {
    -webkit-animation-delay: 0.8s;
}

/* 面包屑导航栏 */
.crumbs-nav {
    display: flex;
    justify-content: flex-end;
    padding: 0 10%;
    padding-top: calc(0.521vw + 10px);
    padding-bottom: calc(0.521vw + 10px);
}

.crumbs-nav p {
    display: flex;
    align-items: center;
}

.crumbs-nav a {
    display: inline-block;
    font-size: 14px;
    color: #000;
}

.crumbs-nav a:last-child {
    width: calc(7.292vw + 60px);
    color: #0a50a0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.crumbs-nav a:not(:last-child)::after {
    content: '>';
    margin: 0 8px;
}


/* 日志 */
.main-container {
    margin-top: 80px;
    /* margin-bottom: 6.250vw; */
}

.banner-container {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 37.500vw;
    color: #fff;
}

.banner-container .top-content {
    flex: 1;
    display: flex;
    align-items: center;
    padding-left: 10%;
}

.banner-container .top-content .b-title {
    font-size: calc(60rem / 16);
    line-height: calc(80rem / 16);
    color: #fff;
}

.banner-container .top-content .text {
    margin-top: calc(1.042vw + 10px);
    font-size: calc(24rem / 16);
    line-height: calc(35rem / 16);
}

.banner-container .bottom-content ul {
    position: relative;
    display: flex;
    padding: 0 10%;
}

.banner-container .bottom-content ul::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    border-top: 1px solid rgba(255, 255, 255, .3);
}

.banner-container .bottom-content ul li {
    flex: 1;
    text-align: center;
    transition: all .5s;
    list-style-type: none;
}

.banner-container .bottom-content ul li a.active {
    border-top: 1px solid #fff;
}

.banner-container .bottom-content ul li a {
    display: inline-block;
    width: 100%;
    height: 100%;
    padding: calc(0.521vw + 10px) 0;
    font-size: calc(16rem / 16);
    color: #fff;
}

.banner-container .bottom-content ul li:hover {
    background-color: #0a50a0;
}

.content-need-space {
    padding: 0 10%
}

.content-b-title {
    margin-bottom: 2.604vw;
    font-size: calc(48rem / 16);
}

.content-s-title {
    font-size: calc(30rem / 16);
    line-height: calc(45rem / 16);
}

.bg-gray {
    background-color: #f0f1f5;
}

.log-container {
    padding-bottom: 6.250vw;
}

.log-container .overview {
    padding-top: calc(1.9vw + 3px);
    padding-bottom: 5.208vw;
    background-color: #f0f1f5;
}

.log-container .overview .text {
    max-height: calc(5.208vw + 100px);
    padding-right: 10px;
    line-height: calc(28rem / 16);
    overflow: auto;
}

/* 滚动条整体 */
.log-container .overview .text::-webkit-scrollbar {
    height: 20px;
    width: 2px;
}

/* 滚动条滑块 */
.log-container .overview .text::-webkit-scrollbar-thumb {
    border-radius: 2px;
    -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
    background: rgb(10, 80, 160);
}

/* 滚动条轨道 */
.log-container .overview .text::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    background: #ededed;
}

.log-container .overview-content {
    display: flex;
    background-color: #fff;
    border-radius: 30px;
    overflow: hidden;
    min-height: 27vw;
}

.log-container .overview-content .left-content {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50%;
    overflow: hidden;
    margin: 1vw 0;
}

.log-container .overview-content .left-content img {
    /* flex: 50%; */
    position: absolute;
    max-width: 100%;
    max-height: 100%;
}

.log-container .overview-content .right-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 50%;
    padding-top: 3.646vw;
    padding-bottom: 3.125vw;
    padding-left: 2.865vw;
    padding-right: 2.865vw;
}

.log-container .content-s-title {
    text-align: start;
    margin-bottom: calc(1.042vw + 10px);
}

.log-container .text {
    text-align: justify;
}

.log-container .feature-item .text {
    text-align: left;
}

.log-container .text-content {
    text-align: justify;
    font-size: calc(18rem / 16);
    line-height: calc(28rem / 16);
    margin-bottom: 20px;
    color: #4c4c4c;
}

.log-container .feature {
    width: 100%;
    padding-top: 5.208vw;
    /* padding-bottom: 2vw; */
    background-color: #fff;
}

.log-container .feature .text {
    line-height: calc(25rem / 16);
}

.log-container .feature .text ol,
.log-container .feature .text ul {
    list-style-type: revert;
}

.log-container .feature .text ul ul {
    margin-left: 10px;
}

.log-container .feature .text li {
    list-style-type: revert;
}

.log-container .feature-content {
    display: flex;
    flex-wrap: wrap;
    /* justify-content: space-between; */
}

.log-container .feature-content .feature-item {
    width: calc((100% - 6vw) / 4);
    min-height: 23.958vw;
    padding: 0 2.083vw;
    padding-top: 2.604vw;
    padding-bottom: calc(0.313vw + 4px);
    margin-bottom: 2vw;
    background-color: #f0f1f5;
    border-radius: 20px;
    cursor: pointer;
    transition: all 1s;
}

.log-container .feature-content .feature-item:nth-child(4n + 2),
.log-container .feature-content .feature-item:nth-child(4n + 3),
.log-container .feature-content .feature-item:nth-child(4n + 4) {
    margin-left: 2vw;
}

.log-container .feature-content .feature-item .pic {
    position: relative;
    width: 6.250vw;
    height: 6.250vw;
}

.log-container .feature-content .feature-item .pic img {
    width: 100%;
    height: 100%;
}

.log-container .feature-content .feature-item .pic .put-icon {
    position: absolute;
    left: 0;
    top: 0;
    display: none;
}

.log-container .feature-content .feature-item .text-content {
    margin-top: 2.083vw;
}

.log-container .feature-content .feature-item .text-content .feature-title {
    margin-bottom: 1.563vw;
    font-size: calc(24rem / 16);
    line-height: calc(30rem / 16);
    text-align: left;
}

.log-container .feature-content .feature-item .text-content .feature-title .dot {
    padding-right: 10px;
    font-weight: bold;
    color: #0a50a0;
}

.log-container .feature-content .feature-item:hover {
    background-image: linear-gradient(to right bottom, #369ac4, #0f338d);
}

.log-container .feature-content .feature-item:hover .text-content .feature-title .dot {
    color: #fff;
}

.log-container .feature-content .feature-item:hover .default-icon {
    display: none;
}

.log-container .feature-content .feature-item:hover .put-icon {
    display: block;
}

.log-container .feature-content .feature-item:hover .text-content {
    color: #fff;
}

.log-container .scene {
    padding-top: 3.208vw;
}

.log-container .scene .top-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 2.604vw;
}

.log-container .scene .top-content .content-b-title {
    margin-bottom: 0;
}

.log-container .scene .top-content ul {
    display: flex;
    justify-content: space-between;
}

.log-container .scene .top-content ul li {
    list-style-type: none;
    position: relative;
    margin-left: 2.604vw;
    cursor: pointer;
    line-height: calc(40rem / 16);
}

.log-container .scene .top-content ul li::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #0a50a0;
}

.log-container .scene .top-content ul li.active {
    color: #0a50a0;
}

.log-container .scene .top-content ul li.active::after {
    width: 100%;
}

.log-container .scene .top-content ul li:hover {
    color: #0a50a0;
}

.log-container .scene .top-content ul li:hover:after {
    width: 100%;
}

.log-container .scene .scene-swiper {
    width: 100%;
}

.log-container .scene .scene-swiper .text-container {
    width: calc(16.667vw + 140px);
    min-height: 32.292vw;
    height: 100%;
    padding: 0 2.604vw;
    padding-top: 4.167vw;
    margin-left: 10%;
    background-color: #f0f1f5;
    color: #4c4c4c;
}

.log-container .scene .scene-swiper .swiper-slide {
    height: auto;
}

.log-container .scene .scene-swiper .text-container p:not(:first-child) {
    margin-top: 1.563vw;
}

.log-container .scene .scene-swiper .text-container .text-content {
    max-height: calc(15.625vw + 150px);
    overflow: auto;
    padding-right: 5px;
    line-height: calc(25rem / 16);
}

/* 滚动条整体 */
.log-container .scene .scene-swiper .text-container .text-content::-webkit-scrollbar {
    height: 20px;
    width: 2px;
}

/* 滚动条滑块 */
.log-container .scene .scene-swiper .text-container .text-content::-webkit-scrollbar-thumb {
    border-radius: 2px;
    -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
    background: rgb(10, 80, 160);
}

/* 滚动条轨道 */
.log-container .scene .scene-swiper .text-container .text-content::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    background: #ededed;
}

.log-container .framework {
    padding-top: 5.208vw;
}

.log-container .framework .main-content {
    display: flex;
    height: calc(20.833vw + 100px);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #f0f1f5;
}

.log-container .framework .main-content .swiper-slide {
    display: flex;
    height: auto;
}

.log-container .framework .main-content .slide-left {
    width: 50%;
    /* height: calc(20.833vw + 100px); */
    height: 100%;
    padding: calc(2.292vw + 1px) calc(1.771vw + 1px);
}

.log-container .framework .main-content .left-nav {
    padding-right: 15px;
    margin-left: calc(0.521vw + 10px);
    margin-top: calc(2.292vw + 1px);
    height: calc(100% - 2.292vw * 2 - 2px);
    overflow-y: auto;
    overflow-x: hidden;
}

/* 滚动条整体 */
.log-container .framework .main-content .left-nav::-webkit-scrollbar {
    height: 20px;
    width: 2px;
}

/* 滚动条滑块 */
.log-container .framework .main-content .left-nav::-webkit-scrollbar-thumb {
    border-radius: 2px;
    -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
    background: rgb(10, 80, 160);
}

/* 滚动条轨道 */
.log-container .framework .main-content .left-nav::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    background: #ededed;
}

.log-container .framework .main-content .left-nav .serial-num {
    width: 30px;
    height: 30px;
    margin-bottom: calc(0.521vw + 10px);
    cursor: pointer;
    border-color: #999999;
    color: #999999;
}

.log-container .framework .main-content .left-nav .serial-num::after {
    border-color: #999999;
}

.log-container .framework .main-content .left-nav .serial-num:hover {
    color: #0a50a0;
    border-color: #0a50a0;
}

.log-container .framework .main-content .left-nav .serial-num:hover:after {
    border-color: #0a50a0;
}

.log-container .framework .main-content .left-nav .serial-num.active {
    color: #0a50a0;
    border-color: #0a50a0;
}

.log-container .framework .main-content .left-nav .serial-num.active:after {
    border-color: #0a50a0;
}

.log-container .framework .main-content .slide-left {
    display: flex;
    align-items: center;
    justify-content: center;
}

.log-container .framework .main-content .slide-left img {
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
}

.log-container .framework .main-content .slide-right {
    display: flex;
    flex-direction: column;
    width: 50%;
    /* height: calc(20.833vw + 100px); */
    height: 100%;
    padding: 2.917vw 2.083vw;
    background-color: #f0f1f5;
    /* text-align: justify; */
    /* overflow: auto; */
}

.log-container .framework .main-content .right-content {
    flex: 1;
    overflow: hidden;
    height: 100%;
}

.log-container .framework .main-content .right-content .framework-swiper {
    height: 100%;
}

.log-container .framework .main-content .slide-right .text-container {
    flex: 1;
    overflow: auto;
    padding-right: 10px;
    line-height: calc(25rem / 16);
}

.log-container .framework .main-content .slide-right .text-container ul {
    padding-left: 2.083vw;
}

.log-container .framework .main-content .slide-right .text-container li {
    list-style-type: disc;
}

/* 滚动条整体 */
.log-container .framework .main-content .slide-right .text-container::-webkit-scrollbar {
    height: 20px;
    width: 2px;
}

/* 滚动条滑块 */
.log-container .framework .main-content .slide-right .text-container::-webkit-scrollbar-thumb {
    border-radius: 2px;
    -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
    background: rgb(10, 80, 160);
}

/* 滚动条轨道 */
.log-container .framework .main-content .slide-right .text-container::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    background: #ededed;
}


/* 解决方案 */
.characteristic {
    padding-top: 5.208vw;
}

.characteristic-content {
    width: 100%;
    border-top: 1px solid #dedede;
}

.characteristic-item {
    border-bottom: 1px solid #dedede;
}

.characteristic-item .top-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: calc(1.042vw + 10px) 0;
    font-size: calc(24rem / 16);
    cursor: pointer;
}

.characteristic-item .top-content .serial-number {
    margin-right: calc(0.313vw + 4px);
    font-size: calc(30rem / 16);
    color: #0a50a0;
}

.characteristic-item .top-content .serial-number::after {
    content: '.';
}

.characteristic-item .top-content .btn-icon {
    position: relative;
    width: 40px;
    height: 40px;
}

.characteristic-item .top-content .btn-icon .put-icon {
    display: none;
}

.characteristic-item.active .top-content .default-icon {
    display: none;
}

.characteristic-item.active .top-content .put-icon {
    display: block;
}

.characteristic-item .top-content .btn-icon img {
    width: 100%;
    height: 100%;
}

.characteristic-item .main-content {
    display: none;
    padding-bottom: 2.083vw;
}

.characteristic-item .main-content>div {
    display: flex;
    justify-content: space-between;
}

.characteristic-item .main-content .left-text {
    width: 50%;
    padding-left: calc(1.563vw + 10px);
    margin-left: calc(1.563vw + 10px);
    border-left: 1px solid #0a50a0;
}

.characteristic-item .main-content .left-text .title {
    font-size: calc(20rem / 16);
    font-weight: bold;
}

.characteristic-item .main-content .left-text .text-content {
    margin-top: calc(1.042vw + 10px);
}

.characteristic-item .main-content .left-text .text-content p {
    margin-bottom: calc(0.313vw + 4px);
}

.characteristic-item .main-content .right-pic {
    width: 50%;
}

.characteristic-item .main-content .right-pic img {
    width: 100%;
}

.log-container .partner {
    padding-top: 5.208vw;
}

.log-container .partner .main-content .partner-swiper {
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    overflow: hidden;
}

.log-container .partner-swiper .swiper-slide {
    display: flex;
    height: auto;
}

.log-container .partner-swiper .slide-left {
    position: relative;
    width: 50%;
    border: 1px solid #f0f1f5;
    border-top-left-radius: 20px;
}

.log-container .partner-swiper .slide-left img {
    width: 100%;
    min-height: 100%;
    object-fit: cover;
}

.log-container .partner-swiper .slide-left .logo-pic {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    /* width: 40%; */
    width: 100%;
    height: 100%;
}

.log-container .partner-swiper .slide-left .logo-pic img {
    display: block;
    width: auto;
    max-width: 100%;
    min-height: auto;
    max-height: 100%;
    /* height: 100%; */
    margin: 0 auto;
}

.log-container .partner-swiper .slide-right {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 50%;
    padding: calc(2.604vw + 15px) calc(2.604vw + 10px);
    background-color: #f0f1f5;
}

.log-container .partner-swiper .slide-right .more-btn {
    margin-top: 1.042vw;
}

.log-container .logo-container {
    position: relative;
    padding: 0 50px;
    background-color: #f5f5f5;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
}

.log-container .partner-logo-swiper {
    width: 100%;
    height: 100px;
    overflow: hidden;
}

.log-container .partner-logo-swiper .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
}

.log-container .partner-logo-swiper .swiper-slide.swiper-slide-active {
    background-color: #fcfcfc;
}

.log-container .partner-logo-swiper img {
    height: 100%;
    max-width: 100%;
    /* max-width: 80%;
    max-height: 80%; */
}

.log-container .logo-container .swiper-button-prev.logo-prev::after,
.log-container .logo-container .swiper-button-next.logo-next::after {
    content: '';
}

.log-container .logo-container .swiper-button-prev.logo-prev,
.log-container .logo-container .swiper-button-next.logo-next {
    left: auto;
    right: auto;
    z-index: 3;
    width: 46px;
    height: 46px;
    background-image: url('../images/swiper_arrow_white.png');
    background-repeat: no-repeat;
    background-size: contain;
    filter: drop-shadow(0 0 3px #c1c1c1);
}

.log-container .logo-container .swiper-button-prev.logo-prev {
    left: 0;
    transform: translateX(-50%);
}

.log-container .logo-container .swiper-button-next.logo-next {
    right: 0;
    transform: translateX(50%) rotate(180deg);
}

.log-container ul li {
    margin-left: 20px;
    list-style-type: initial;
}

/* 服务与支持 */
.serve-container .content-container {
    margin-top: 2.604vw;
}

.serve-container .content-main {
    display: flex;
    border-top: 1px solid #dedede;
}

.serve-container .content-main .left-var {
    width: 25%;
    padding-top: 2.083vw;
}

.serve-container .content-main .left-var .title {
    font-size: calc(18rem / 16);
    font-weight: bold;
}

.serve-container .content-main .left-var ul {
    margin-top: 1.563vw;
    margin-right: 2.083vw;
    border-top: 1px solid #dedede;
}

.serve-container .content-main .left-var li {
    cursor: pointer;
}

.serve-container .content-main .left-var li.current a {
    background-color: #0a50a0;
    color: #fff;
}

.serve-container .content-main .left-var a {
    display: inline-block;
    width: 100%;
    height: 100%;
    padding: calc(0.833vw + 1px) 0;
    padding-left: calc(0.521vw + 5px);
    border-bottom: 1px solid #dedede;
    transition: all .5s;
}

.serve-container .content-main .left-var a:hover {
    background-color: #0a50a0;
    color: #fff;
}

.serve-container .content-main .left-var li.active a {
    background-color: #0a50a0;
    color: #fff;
}

.serve-container .content-main .right-content {
    width: 75%;
    padding-top: 2.083vw;
    padding-left: 2.083vw;
    padding-bottom: 5.208vw;
    border-left: 1px solid #dedede;
}

.serve-container .content-main .right-content .title {
    font-size: calc(24rem / 16);
    font-weight: bold;
}

.serve-container .content-main .case-list {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    margin-top: calc(1.250vw + 1px);
}

.serve-container .content-main .case-item {
    position: relative;
    width: calc((100% - 3.542vw - 2px) / 3);
    height: 14.583vw;
    margin-bottom: calc(1.771vw + 1px);
    border-radius: 20px;
    overflow: hidden;
}

.serve-container .content-main .case-item:nth-child(3n + 2) {
    margin: 0 calc(1.771vw + 1px);
}

.serve-container .content-main .case-item .bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: all .5s;
}

.serve-container .content-main .case-item.case-item:hover .bg {
    transform: scale(1.1);
}

.serve-container .content-main .case-item a {
    position: relative;
    display: inline-flex;
    align-items: flex-end;
    width: 100%;
    height: 100%;
    padding: calc(1.250vw + 1px) calc(1.250vw + 1px);
    font-size: calc(24rem / 16);
    color: #fff;
}

.serve-container .content-main .case-item a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background-image: linear-gradient(to top, rgba(0, 0, 0, .5), rgba(0, 0, 0, 0));
}

.serve-container .content-main .case-item p {
    position: relative;
    z-index: 2;
}

.pager-container.serve {
    margin-top: calc(2.604vw - 1.771vw - 1px);
}

.pager-container ul {
    display: flex;
}

.pager-container {
    display: flex;
    justify-content: center;
    width: 100%;
}

.pager-container li {
    margin: 0 6px;
}

.pager-container li.selected a {
    background-color: #0a50a0;
    color: #fff;
}

.pager-container a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: calc(1.875vw + 22px);
    height: calc(1.875vw + 22px);
    border: 1px solid #cfcfcf;
    border-radius: 50%;
    transition: all .5s;
}

.pager-container a:hover {
    background-color: #0a50a0;
    color: #fff;
}

/* 技术动态 */

.technology-list {
    /* margin-top: calc(1.250vw + 1px); */
}

.technology-item a {
    display: inline-flex;
    padding: 2.083vw 0;
    border-bottom: 1px solid #dedede;
}

.technology-item .left-pic {
    width: calc(14.583vw + 80px);
    height: calc(9.375vw + 40px);
    border-radius: 20px;
    overflow: hidden;
    transition: all .5s;
}

.technology-item .left-pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all .5s;
}

.technology-item .right-text {
    flex: 1;
    display: flex;
    align-items: center;
    margin-left: 2.083vw;
}

.technology-item .right-text .title-text {
    margin-bottom: 1.042vw;
    font-size: calc(24rem / 16);
    color: #000;
}

.technology-item .right-text .author {
    margin-bottom: 1.042vw;
    font-size: calc(14rem / 16);
    color: #010101;
}

.technology-item .right-text .text-content {
    font-size: 14px;
    text-align: justify;
    line-height: calc(25rem / 16);

    overflow: hidden;
}

.technology-item a:hover .left-pic {
    box-shadow: 1px 3px 3px #585858;
}

.technology-item a:hover .left-pic img {
    transform: scale(1.1);
}

.technology-pager {
    margin-top: 2.604vw;
}

/* 产品文档 */
.document-list {
    /* display: none; */
    margin-top: 2.083vw;
}

.document-list .document-item {
    position: relative;
    transition: all .5s;
    border-radius: 10px;
    overflow: hidden;
}

.document-list .document-item a.wfEditorMode {
    position: absolute;
    bottom: 0;
    width: auto;
    padding: 0 30px;
}

.document-list .document-item:not(:last-child) {
    margin-bottom: calc(0.833vw + 4px);
}

.document-list .document-item:hover {
    transform: translateY(-3px);
    box-shadow: 1px 1px 3px #c1c1c1;
}

.document-list .document-item a {
    display: flex;
    align-items: center;
    width: 100%;
    padding: calc(0.729vw + 6px) calc(0.729vw + 11px);
    background-color: #f5f5f5;
    border: 1px solid #f5f5f5;
}

.document-list .document-item:hover a {
    background-color: #fff;
}

.document-list .document-item .text-container {
    margin-left: calc(0.833vw + 4px);
}

.document-list .document-item .text-container .title-text {
    font-size: calc(20rem / 16);
    color: #000;
}

.document-list .document-item .text-container .size {
    margin-top: 0.521vw;
    font-size: 14px;
}

.document-list .document-item .pic-download {
    margin-left: auto;
}

.document-list .document-item .put-icon {
    display: none;
}

.document-list .document-item:hover .default-icon {
    display: none;
}

.document-list .document-item:hover .put-icon {
    display: block;
}

/* 了解创景 */
.company-container {
    position: relative;
    padding-bottom: 5.208vw;
    margin-top: 2.604vw;
}

.company-container .main-content {
    position: relative;
    z-index: 3;
    display: flex;
    justify-content: space-between;
}

.company-container .main-content .content-b-title {
    margin-bottom: 0.521vw;
}

.company-container .main-content .title-text {
    font-size: calc(30rem / 16);
    font-weight: bold;
}

.company-container .main-content .left-title {
    width: 45%;
    padding-right: 5vw;
}

.company-container .main-content .right-content {
    flex: 1;
    /* margin-left: 11.458vw; */
}

.company-container .main-content .right-content img {
    width: 100%;
}

.company-container .main-content .text-container {
    height: 8.854vw;
    padding-right: 5px;
    overflow: hidden;
    text-align: justify;
    color: #333333;
    line-height: calc(25rem / 16);
}

.company-container .main-content .text-container p {
    margin-bottom: 2em;
}

/* 滚动条整体 */
.company-container .main-content .text-container::-webkit-scrollbar {
    height: 20px;
    width: 2px;
}

/* 两个滚动条交接处 -- x轴和y轴 */
/* .company-container .main-content .text-container::-webkit-scrollbar-corner {
    background-color: transparent;
} */

/* 滚动条滑块 */
.company-container .main-content .text-container::-webkit-scrollbar-thumb {
    border-radius: 2px;
    -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
    background: rgb(10, 80, 160);
}

/* 滚动条轨道 */
.company-container .main-content .text-container::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    background: #ededed;
}


.company-container .main-content .show-more {
    display: inline-flex;
    align-items: center;
    padding-top: 1.563vw;
    font-size: 14px;
    color: #0a50a0;
    cursor: pointer;
}

.company-container .main-content .show-more .show-icon-btn {
    margin-left: 5px;
}

.company-container .main-content .pic-company {
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    margin-top: 2.604vw;
}

.company-container .main-content .pic-company img {
    width: 100%;
}

.company-container .company-bg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
}

.company-container .company-bg img {
    width: 100%;
}

.company-vision {
    position: relative;
    /* display: flex; */
    height: 41.667vw;
    overflow: hidden;
}

.company-vision .rhombus {
    animation: visionAn 3s infinite alternate ease-in-out;
}

.company-vision .rhombus img {
    width: 100%;
}

.company-vision .bg-1 {
    position: absolute;
    bottom: 0;
    left: 10%;
    width: 18.750vw;
    animation-delay: 1s;
}

.company-vision .bg-2 {
    position: absolute;
    top: 0;
    left: 30%;
    width: 10.052vw;
    animation-delay: .2s;
}

.company-vision .bg-3 {
    position: absolute;
    top: 23%;
    right: 34%;
    width: 8.021vw;
    animation-delay: -1s;
}

.company-vision .bg-4 {
    position: absolute;
    bottom: 8%;
    right: 18%;
    width: 13.177vw;
    animation-delay: 1.3s;
}

.company-vision .vision-list {
    position: relative;
    display: flex;
    justify-content: space-between;
    z-index: 3;
    width: 100%;
    height: 100%;
}

.company-vision .vision-item {
    position: relative;
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    color: #fff;
    cursor: pointer;
}

.company-vision .vision-item .show-more {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: all .5s;
}

.company-vision .show-more .b-title {
    margin-top: 1.563vw;
    font-size: calc(34rem / 16);
    font-weight: bold;
}

.company-vision .show-more .text-container {
    margin-top: 1.042vw;
    font-size: calc(16rem / 16);
}

.company-vision .vision-item .s-title {
    font-size: calc(24rem / 16);
    font-weight: bold;
    transition: all .5s;
}

.company-vision .vision-item.active {
    background-color: rgba(0, 0, 0, .5);
}

.company-vision .vision-item:not(:last-child) {
    border-right: 1px solid #0e2a55;
}

.company-vision .vision-item.active .s-title {
    opacity: 0;
}

.company-vision .vision-item.active .show-more {
    opacity: 1;
}

.company-vision .vision-item .show-more .text-container {
    text-align: center;
    line-height: calc(25rem / 16);
}

.company-milestone {
    width: 100%;
    padding-top: 5.208vw;
    /* height: 47.917vw; */
    /* padding: 5.208vw 0; */
}

.company-milestone .content-b-title {
    padding-bottom: 1.563vw;
    margin-bottom: 0;
    border-bottom: 1px solid #e5e5e5;
}

.company-milestone .milestone-swiper {
    width: 52%;
    margin-left: 35%;
    margin-top: 4.167vw;
    overflow: hidden;
    cursor: pointer;
}

.company-milestone .milestone-swiper .title {
    font-size: calc(30rem / 16);
    font-weight: bold;
}

.company-milestone .milestone-swiper .time {
    margin-top: 1.563vw;
    margin-bottom: 0.417vw;
    font-size: calc(18rem / 16);
    color: #083d7e;
}

.company-milestone .milestone-swiper .text-container p {
    margin-bottom: 1.042vw;
    text-align: justify;
}

.company-milestone .milestone-swiper .text-container {
    line-height: calc(25rem / 16);
}

.company-milestone .year-swiper {
    position: relative;
    width: 80%;
    /* height: 8.750vw; */
    overflow: hidden;
    margin-left: 5%;
    font-size: calc(24rem / 16);
    color: #788697;
}

.company-milestone .year-swiper .swiper-slide-active p {
    font-size: calc(140rem / 16);
    font-weight: bold;
    background-image: linear-gradient(to bottom right, #1090cb, #0a50a0);
    -webkit-background-clip: text;
    color: transparent;
}

.company-milestone .year-swiper .swiper-slide {
    display: flex;
    width: auto;
    height: 100%;
    padding: 0 4.271vw;
}

.company-milestone .year-swiper .swiper-slide p {
    margin: auto;
    transition: all 1s;
    line-height: calc(140rem / 16);
}

.company-milestone .bottom-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.company-milestone .bottom-container .swiper-btns {
    position: relative;
    display: flex;
}

.company-milestone .bottom-container .swiper-btns .year-prev,
.company-milestone .bottom-container .swiper-btns .year-next {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    z-index: 3;
    margin-top: 0;
}

.company-milestone .bottom-container .swiper-btns .year-prev::after,
.company-milestone .bottom-container .swiper-btns .year-next::after {
    content: '';
}

.company-milestone .bottom-container .swiper-btns .year-prev {
    box-shadow: 1px 1px 3px #c1c1c1;
}

.company-milestone .bottom-container .swiper-btns .year-next {
    margin-left: 10px;
    transform: rotate(180deg);
    box-shadow: -1px -1px 3px #c1c1c1;
}

.company-milestone .bottom-container .swiper-btns>div {
    height: 50px;
    width: 50px;
    border-radius: 50%;
    overflow: hidden;
}

.company-milestone .bottom-container .swiper-btns>div img {
    width: 100%;
    height: 100%;
}

.company-milestone .bottom-container .swiper-btns>div:hover .default-icon {
    display: none;
}

.company-milestone .bottom-container .swiper-btns>div:hover .put-icon {
    display: block;
}

.company-milestone .bottom-container .swiper-btns .put-icon {
    display: none;
}

.company-milestone .time-bg {
    width: 100%;
}

.company-milestone .time-bg img {
    width: 100%;
}

.company-certificate {
    display: flex;
    width: 100%;
    height: 41.667vw;
    overflow: hidden;
}

.company-certificate .left-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 35%;
    padding-left: 10%;
    text-align: justify;
}

.company-certificate .left-content .text-container {
    line-height: calc(25rem / 16);
}

.company-certificate .right-certificate {
    flex: 1;
    display: flex;
    justify-content: space-between;
    padding-right: 10%;
    margin-left: 10%;
}

@keyframes scrollCert {
    0% {
        transform: none;
    }

    100% {
        transform: translateY(-100%);
    }
}

.right-certificate .swiper-wrapper {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;

    animation: scrollCert linear infinite;
}


.company-certificate .right-certificate img {
    width: 100%;
}

.company-certificate .right-certificate .swiper-slide {
    height: auto;
    margin-bottom: 2.604vw;
}

.company-certificate .right-certificate .swiper-wrapper {
    transition-timing-function: linear;
    height: auto;
}

.company-certificate .right-certificate .swiper-wrapper.cloned {}

.company-certificate .right-certificate .certificate-swiper-left:hover .swiper-wrapper,
.company-certificate .right-certificate .certificate-swiper-right:hover .swiper-wrapper {
    animation-play-state: paused;
}

.company-certificate .right-certificate .certificate-swiper-left {
    width: 48%;
}

.company-certificate .right-certificate .certificate-swiper-right {
    width: 48%;
}


/* .company-certificate .right-certificate .swiper-wrapper {
    transition-timing-function: linear;
} */

/* .company-certificate .certificate-list {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 13vw;
} */


/* .company-certificate .certificate-item {
    width: 100%;
    margin-top: 5vw;
    margin-bottom: 3vw;
    background-color: #fff;
    border-radius: 30px;
    overflow: hidden;
} */

/* .company-certificate .certificate-item img {
    width: 100%;
} */


/* 合作伙伴 */
.company-partner {
    padding-top: 5.208vw;
    padding-bottom: 5.208vw;
}

.company-partner .partner-top {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #e5e5e5;
}

.company-partner .partner-top .btn-container {
    display: flex;
}

.company-partner .partner-top .btn-container>div {
    cursor: pointer;
    border-radius: 50%;
}

.company-partner .partner-top .btn-container>div:hover .default-icon {
    display: none;
}

.company-partner .partner-top .btn-container>div:hover .put-icon {
    display: block;
}

.company-partner .partner-top .btn-container .partner-prev {
    width: 50px;
    height: 50px;
    box-shadow: 1px 1px 3px #c1c1c1;
}

.company-partner .partner-top .btn-container .partner-next {
    width: 50px;
    height: 50px;
    margin-left: 20px;
    transform: rotate(180deg);
    box-shadow: -1px -1px 3px #c1c1c1;
}

.company-partner .partner-top .btn-container .partner-prev img,
.company-partner .partner-top .btn-container .partner-next img {
    width: 100%;
    height: 100%;
}

.company-partner .partner-top .btn-container .put-icon {
    display: none;
}

.company-partner .partner-swiper-container {
    overflow: hidden;
    border-bottom: 1px solid #e5e5e5;
}

.company-partner .swiper-wrapper .swiper-slide {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    width: 100%;
    height: calc(5.208vw + 100px);
}

.company-partner .swiper-wrapper .swiper-slide .logo-pic {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 25%;
    height: 50%;
    padding: calc(0.208vw + 6px) 0;
}

.company-partner .swiper-wrapper .swiper-slide img {
    max-width: 80%;
    max-height: 80%;
}



/* 新闻 */
.news-top {
    width: 100%;
    text-align: center;
}

.news-top .news-type {
    display: flex;
    justify-content: center;
}

.news-top .news-type li {
    margin: 0 3.125vw;
}

.news-top .news-type li.active a {
    color: #0a50a0;
    font-weight: bold;
}

.news-top .news-type li:hover a {
    color: #0a50a0;
    font-weight: bold;
}

.news-top .news-top-swiper-container {
    position: relative;
}

.news-top .news-swiper {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin-top: 2.083vw;
}

.news-top .news-swiper a {
    display: inline-block;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 40px;
}

.news-top .news-swiper .pic {
    position: relative;
    height: 32.292vw;
    overflow: hidden;
}

.news-top .news-swiper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-top .news-swiper .pic .time-content {
    position: absolute;
    left: 2.083vw;
    top: 2.083vw;
    padding: 5px calc(0.208vw + 6px);
    border: 1px solid #fff;
    border-radius: 10px;
    color: #fff;
    text-align: center;
}

.news-top .news-swiper .pic .time-content .day {
    font-size: calc(60rem / 16);
    line-height: 1;
}

.news-top .bottom-content {
    display: flex;
    justify-content: space-between;
    /* align-items: center; */
    /* padding: calc(1.771vw + 1px) 0; */
    padding-left: calc(1.771vw + 1px);
    background-color: #fff;
    text-align: left;
}

.news-top .bottom-content .text-content {
    flex: 1;
    padding: 1.042vw 0;
    margin-right: calc(1.771vw + 1px);
}

.news-top .bottom-content .text-content .title {
    font-size: calc(26rem / 16);
    color: #000;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.news-top .bottom-content .text-content .text {
    margin-top: calc(0.313vw + 4px);
    line-height: calc(25rem / 16);
    text-align: justify;

    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.news-top .bottom-content .icon {
    display: flex;
    width: 7.292vw;
    /* padding: calc(1.771vw + 1px) 0; */
    background-color: #0a50a0;
}

.news-top .bottom-content .icon img {
    width: 1.563vw;
    height: auto;
    object-fit: contain;
    margin: auto;
}

.news-top .news-prev,
.news-top .news-next {
    z-index: 4;
    left: auto;
    right: auto;
    top: 0;
    bottom: auto;
    width: 58px;
    height: 58px;
    margin-top: 0;
    background: url('../images/news_arrow_white.png') no-repeat center/cover;
    filter: drop-shadow(1px 1px 3px #666);
}

.news-top .news-prev {
    top: calc(32.292vw / 2);
    transform: rotate(180deg) translate(50%, 50%);
}

.news-top .news-next {
    top: calc(32.292vw / 2);
    right: 0;
    transform: translate(50%, -50%);
}

.news-top .news-prev::after,
.news-top .news-next::after {
    content: '';
}

.news-top .news-pagination {
    bottom: auto;
    top: 30vw;
}

.news-top .news-pagination .swiper-pagination-bullet {
    background-color: #fff;
}

.news-main {
    padding-top: .1px;
    padding-bottom: 5.208vw;
    margin-top: -22.917vw;
    background-color: #f0f1f5;
}

.news-main .news-list {
    display: flex;
    flex-wrap: wrap;
    margin-top: 26.042vw;
}

.news-main .news-list .news-item {
    position: relative;
    width: calc((100% - 1.771vw * 3) / 4);
    min-height: 23.958vw;
    margin-bottom: 1.771vw;
    background-color: #fff;
    border-radius: 20px;
    overflow: hidden;
}

.news-main .news-list .news-item a {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    height: 100%;
    padding: 2.083vw;
    transition: all 1s;
}

.news-main .news-list .news-item:nth-child(4n + 2) {
    margin-left: 1.771vw;
}

.news-main .news-list .news-item:nth-child(4n + 3) {
    margin-left: 1.771vw;
}

.news-main .news-list .news-item:nth-child(4n + 4) {
    margin-left: 1.771vw;
}

.news-main .news-list .news-item .title {
    font-size: calc(24rem / 16);
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.news-main .news-list .news-item .text-container {
    margin-top: 1.042vw;
    font-size: 14px;
    line-height: 20px;

    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 8;
}

.news-main .news-list .news-item .time {
    margin-top: calc(1.875vw - 1px);
}

.news-main .news-list .news-item .bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #0a50a0;
}

.news-main .news-list .news-item .bottom-content .name::before {
    content: '';
    display: inline-block;
    width: 10px;
    height: 10px;
    margin-right: 10px;
    background-color: #0a50a0;
}

.news-main .news-list .news-item .bottom-content .icon {
    width: 38px;
    height: 38px;
}

.news-main .news-list .news-item .bottom-content .icon img {
    width: 100%;
}

.news-main .news-item .bg {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/news_item_bg.jpg') no-repeat center/cover;
    transition: all 1s;
}

.news-main .news-item .bg>div {
    position: absolute;
    animation: visionAn 3s infinite alternate ease-in-out;
}

.news-main .news-item .bg img {
    width: 100%;
}

.news-main .news-item .bg_1 {
    bottom: 10%;
    right: -3%;
    width: 10.208vw;
}

.news-main .news-item .bg_2 {
    top: 37%;
    left: 25%;
    width: 5vw;
}

.news-main .news-item .bg_3 {
    top: 25%;
    left: 50%;
    width: calc(2.188vw - 3px);
}

.news-main .news-list .news-item:hover a {
    color: #fff;
}

.news-main .news-list .news-item:hover .name {
    color: #fff;
}

.news-main .news-list .news-item:hover .name::before {
    background-color: #fff;
}

.news-main .news-list .news-item:hover .bg {
    opacity: 1;
}

.news-main .news-pager {
    margin-top: 1.042vw;
}

/* 新闻详情页 */
.news-detail {
    padding-bottom: 5.208vw;
}

.news-detail .detail-banner {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 32.292vw;
    color: #fff;
}

.news-detail .detail-banner .text-content {
    width: 100%;
}

.news-detail .crumbs-nav {
    position: absolute;
    top: 0;
    right: 0;
}

.news-detail .crumbs-nav a {
    color: #fff;
}

.news-detail .detail-banner .type {
    margin-bottom: 1.042vw;
    font-size: calc(18rem / 16);
}

.news-detail .detail-banner .type::before {
    content: '';
    display: inline-block;
    width: 0.521vw;
    height: 0.521vw;
    margin-bottom: calc(-0.208vw + 5px);
    margin-right: 10px;
    background-color: #fff;
}

.news-detail .detail-banner .title {
    width: 80%;
    font-size: calc(60rem / 16);
}

.news-detail .content-main .top-message {
    display: flex;
    padding-top: 2.344vw;
    padding-bottom: 1.563vw;
    border-bottom: 1px solid #dedede;
}

.news-detail .content-main .top-message .time {
    width: 40%;
}

.news-detail .content-main .top-message .post {
    flex: 1;
}

.news-detail .content-main .top-message .back {
    padding-left: 10px;
    margin-left: auto;
}

.news-detail .detail-content {
    width: 60%;
    margin-top: 2.083vw;
    margin-left: 40%;
    text-align: justify;
}

.news-detail .detail-content ol,
.news-detail .detail-content ol li{
    list-style-type: decimal;
}

.news-detail .detail-content p {
    margin-bottom: 1.563vw;
    line-height: calc(28rem / 16);
}

/* .news-detail .detail-content em {
    font-size: calc(24rem / 16);
    font-weight: bold;
} */

.news-detail .detail-content strong {
    font-weight: bold;
}

.news-detail .detail-content img {
    width: calc(600rem / 16);
    height: auto;
    max-width: 100%;
    margin: 0 auto;
    margin-bottom: 2.604vw;
}

.news-detail .detail-content ul li {
    margin-left: 30px;
    list-style-type: initial;
}

.news-detail .detail-content ul ul {
    margin-left: 20px;
}

.news-detail .detail-bottom {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #dedede;
}

.news-detail .page-turning-container {
    display: flex;
    padding-top: 1.563vw;
    padding-bottom: 4.167vw;
    padding-left: 40%;
    border-bottom: 1px solid #dedede;
}

.news-detail .page-turning-container a {
    position: relative;
}

.news-detail .page-turning-container a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #7a7a7a;
}

.news-detail .page-turning-container a:hover {
    color: #0a50a0;
}

.news-detail .page-turning-container a:hover::after {
    background-color: #0a50a0;
}

.news-detail .page-turning-container .prev-btn {
    margin-right: 1.563vw;
}

.news-detail .related-news {
    margin-top: 4.167vw;
}

.news-detail .related-news .b-title {
    font-size: calc(36rem / 16);
    font-weight: bold;
}

.news-detail .news-list {
    display: flex;
    margin-top: 2.083vw;
}

.news-detail .news-list .news-item {
    position: relative;
    width: calc((100% - 1.771vw * 3) / 4);
    min-height: 23.958vw;
    background-color: #fff;
    border-radius: 20px;
    overflow: hidden;
    background-image: linear-gradient(to right top, #e9edf3, #c6d3e6);
}

.news-detail .news-list .news-item a {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    height: 100%;
    padding: 2.083vw;
    transition: all 1s;
}

.news-detail .news-list .news-item:nth-child(4n + 2) {
    margin-left: 1.771vw;
}

.news-detail .news-list .news-item:nth-child(4n + 3) {
    margin-left: 1.771vw;
}

.news-detail .news-list .news-item:nth-child(4n + 4) {
    margin-left: 1.771vw;
}

.news-detail .news-list .news-item .title {
    font-size: calc(24rem / 16);
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.news-detail .news-list .news-item .text-container {
    margin-top: 1.042vw;
    font-size: 14px;
    line-height: 20px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
}

.news-detail .news-list .news-item .time {
    margin-top: calc(1.875vw - 1px);
}

.news-detail .news-list .news-item .bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #0a50a0;
}

.news-detail .news-list .news-item .bottom-content .name::before {
    content: '';
    display: inline-block;
    width: 10px;
    height: 10px;
    margin-right: 10px;
    background-color: #0a50a0;
}

.news-detail .news-list .news-item .bottom-content .icon {
    width: 38px;
    height: 38px;
}

.news-detail .news-list .news-item .bottom-content .icon img {
    width: 100%;
}

.news-detail .news-item .bg {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/news_item_bg.jpg') no-repeat center/cover;
    transition: all 1s;
}

.news-detail .news-item .bg>div {
    position: absolute;
    animation: visionAn 3s infinite alternate ease-in-out;
}

.news-detail .news-item .bg img {
    width: 100%;
}

.news-detail .news-item .bg_1 {
    bottom: 10%;
    right: -3%;
    width: 10.208vw;
}

.news-detail .news-item .bg_2 {
    top: 37%;
    left: 25%;
    width: 5vw;
}

.news-detail .news-item .bg_3 {
    top: 25%;
    left: 50%;
    width: calc(2.188vw - 3px);
}

.news-detail .news-list .news-item:hover a {
    color: #fff;
}

.news-detail .news-list .news-item:hover .name {
    color: #fff;
}

.news-detail .news-list .news-item:hover .name::before {
    background-color: #fff;
}

.news-detail .news-list .news-item:hover .bg {
    opacity: 1;
}

/* 人才招聘 */
.join-container {
    margin-top: calc(1.875vw - 1px);
}


.join-container .join-text {
    text-align: center;
}

.join-container .join-text+div {
    display: flex;
}

.join-container .join-content {
    position: relative;
    display: flex;
    align-items: flex-end;
    min-height: 27.083vw;
}

.join-container .join-content .left-pic {
    position: absolute;
    left: 0;
    width: 60%;
    height: 100%;
    border-radius: 30px;
    overflow: hidden;
}

.join-container .join-content .left-pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.join-container .join-content .right-text {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    width: 45%;
    height: 80%;
    padding: 3.125vw;
    margin-left: 55%;
    background-color: #f5f5f5;
    border-radius: 30px;
    text-align: justify;
}

.join-container .join-content .right-text .title {
    margin-bottom: 1.563vw;
    font-size: calc(30rem / 16);
    font-weight: bold;
}

.join-container .join-content .right-text .text-content {
    flex: 1;
    padding-right: 10px;
    overflow: auto;
}

/* 滚动条整体 */
.join-container .join-content .right-text .text-content::-webkit-scrollbar {
    height: 20px;
    width: 2px;
}

/* 滚动条滑块 */
.join-container .join-content .right-text .text-content::-webkit-scrollbar-thumb {
    border-radius: 2px;
    -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
    background: rgb(10, 80, 160);
}

/* 滚动条轨道 */
.join-container .join-content .right-text .text-content::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    background: #ededed;
}

.join-container .join-content .right-text .text-content p {
    margin-bottom: 1.042vw;
    line-height: calc(25rem / 16);
}

.join-container .welfare-title {
    margin-top: 5.208vw;
    margin-bottom: 2.083vw;
    font-size: calc(30rem / 16);
    font-weight: bold;
}

.join-container .welfare-list {
    display: flex;
    flex-wrap: wrap;
}

.join-container .welfare-list .welfare-item {
    width: calc((100% - 1.563vw * 3) / 4);
    margin-bottom: 1.771vw;
}

.join-container .welfare-list .welfare-item:not(:nth-child(4n + 4)) {
    margin-right: 1.563vw;
}

.join-container .welfare-list .welfare-item .pic {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: calc(1.875vw - 1px) 0;
    background-color: #f5f5f5;
    border-radius: 20px;
}

.join-container .welfare-list .welfare-item .pic img {
    /* 92px */
    max-width: 4.792vw;
    /* 75px */
    max-height: calc(3.958vw - 1px);
}

.join-container .welfare-list .welfare-item .name {
    padding: calc(0.833vw - 1px) 0;
    border-bottom: 1px solid #dedede;
    font-size: calc(18rem / 16);
    text-align: center;
}

.job-container {
    padding-top: 4.167vw;
    padding-bottom: 5.208vw;
    background-color: #f0f1f5;
}

.job-container .job-b-title {
    font-size: calc(30rem / 16);
    font-weight: bold;
}

.job-container .job-list {
    margin-top: 2.083vw;
}

.job-container .job-item {
    background-color: #fff;
    border-radius: 20px;
    overflow: hidden;
}

.job-container .job-item:not(:last-child) {
    margin-bottom: 0.521vw;
}

.job-container .job-item .top-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: calc(1.354vw - 1px);
    cursor: pointer;
    transition: all .5s;
}

.job-container .job-item .top-content:hover {
    background-color: #0a50a0;
}

.job-container .job-item .top-content:hover p.name {
    color: #fff;
}

.job-container .job-item .top-content .icon {
    width: 40px;
    height: 40px;
}

.job-container .job-item .top-content .icon img {
    width: 100%;
}

.job-container .job-item .top-content .name {
    font-size: calc(24rem / 16);
    font-weight: bold;
}

.job-container .job-item .top-content .icon .put-icon {
    display: none;
}

.job-container .job-item .bottom-content {
    display: none;
    padding: 0 calc(1.354vw - 1px);
    padding-bottom: 2.083vw;
}

.job-container .job-item .bottom-content p {
    line-height: calc(30rem / 16);
    text-align: justify;
}

.job-container .job-item .bottom-content strong {
    font-size: calc(18rem / 16);
    font-weight: bold;
    color: #0a50a0;
}

.job-container .job-item .bottom-content p:has(strong) {
    margin-bottom: 1.042vw;
}

.job-container .job-item .bottom-content p:has(strong):not(:first-child) {
    margin-top: calc(1.875vw - 1px);
}

.job-container .job-item .bottom-content .send-btn {
    display: inline-block;
    margin-top: 2.083vw;
}

.job-container .job-item .bottom-content .send-btn a {
    display: inline-block;
    padding: calc(0.833vw - 1px) 1.563vw;
    border: 1px solid #0a50a0;
    font-size: 14px;
    color: #0a50a0;
    transition: all .5s;
}

.job-container .job-item .bottom-content .send-btn a::before {
    content: '';
    display: inline-block;
    width: 10px;
    height: 10px;
    margin-right: calc(0.521vw + 5px);
    background-color: #0a50a0;
    transition: all .5s;
}

.job-container .job-item .bottom-content .send-btn:hover a {
    background-color: #0a50a0;
    color: #fff;
}

.job-container .job-item .bottom-content .send-btn:hover a::before {
    background-color: #fff;
}

.job-container .job-item.active .top-content .default-icon {
    display: none;
}

.job-container .job-item.active .top-content .put-icon {
    display: block;
}

.job-container .job-item:nth-child(1) .bottom-content {
    display: block;
}

.job-container .pager-container {
    margin-top: 2.604vw;
}

.contact-container .contact-text {
    padding-bottom: 2.083vw;
    margin: 0 10%;
    margin-top: 2.344vw;
    border-bottom: 1px solid #dedede;
    font-size: calc(48rem / 16);
}

.contact-container .city-container {
    display: flex;
    justify-content: space-between;
    /* align-items: flex-end; */
}

.contact-container .city-list {
    display: flex;
    margin-top: 2.083vw;
}

.contact-container .city-list li {
    padding: calc(0.521vw + 5px) calc(1.563vw + 10px);
    margin-right: calc(0.833vw - 1px);
    border: 1px solid #dedede;
    border-radius: 30px;
    font-size: calc(18rem / 16);
    cursor: pointer;
    transition: all .5s;
}

.contact-container .city-list li:hover {
    background-color: #0a50a0;
    color: #fff;
}

.contact-container .city-list li.active {
    background-color: #0a50a0;
    color: #fff;
}

.contact-container .city-content-list {
    padding-left: calc(1.042vw + 5px);
    margin-top: 3.125vw;
    border-left: 2px solid #0a50a0;
}

.contact-container .city-content-list .city-item {
    display: none;
}

.contact-container .city-content-list .city-item.active {
    display: block;
}

.contact-container .city-item .title {
    margin-bottom: 1.458vw;
    font-size: calc(30rem / 16);
    font-weight: bold;
}

.contact-container .city-item .text-content p {
    display: flex;
    margin-bottom: 0.313vw;
}

.contact-container .city-item .text-content .text {
    flex: 1;
}

.contact-container .city-container .contact-code {
    display: flex;
    margin-top: 3.125vw;
}

.contact-container .city-container .contact-code .left-text {
    margin-right: 1.042vw;
}

.contact-container .city-container .contact-code img {
    width: calc(6.458vw + 18px);
    height: calc(6.458vw + 18px);
}

.contact-container .city-map {
    position: relative;
    z-index: 3;
    width: 100%;
    height: calc(25vw + 60px);
    margin-top: 3.125vw;
    /* background-color: skyblue; */
}

.contact-container .city-map img {
    width: 100%;
}

.contact-container .form-container {
    width: 100%;
    padding-bottom: 5.208vw;
    padding-top: calc((25vw + 60px) / 2 + 5.208vw);
    margin: 0 auto;
    margin-top: calc((-25vw - 60px) / 2);
    background-color: #f5f6fa;
}

.form-container .title {
    font-size: calc(30rem / 16);
    text-align: center;
    font-weight: bold;
}

.form-container .table-main {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 60%;
    margin: 0 auto;
    margin-top: 2.083vw;
    font-size: 14px;
}

.form-container .table-item {
    position: relative;
    display: flex;
    align-items: center;
    width: calc((100% - 1.042vw) / 2);
    height: calc(1.563vw + 20px);
    padding: 0 1.042vw;
    /* margin-bottom: calc(0.521vw + 10px); */
    margin-bottom: 25px;
    border: 1px solid #cccccc;
    border-radius: 10px;
}

.form-container .table-item .name {
    padding-right: 1.302vw;
    border-right: 1px solid #dedede;
}

.form-container .table-item .name.required span {
    position: relative;
}

.form-container .table-item .name.required span::after {
    content: '*';
    position: absolute;
    right: 0;
    transform: translateX(120%);
    color: red;
}

.form-container .table-item input {
    flex: 1;
    height: 100%;
    padding-left: calc(0.208vw + 6px);
    background-color: #f5f6fa;
}

.form-container .table-item .theme-value {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    cursor: pointer;
}

.form-container .table-item .err-msg {
    position: absolute;
    bottom: 0;
    left: 0;
    transform: translateY(120%);
    color: #ff0000;
    font-size: 14px;
}

.form-container .table-item .select-container {
    position: relative;
    flex: 1;
    padding-left: 1vw;
    cursor: pointer;
}

.form-container .table-item .select-container .selected {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    line-height: calc(1.563vw + 20px);
}

.form-container .table-item .select-container .selected p {
    white-space: nowrap;
    overflow: hidden;
    flex: 1;
    width: 100px;
    text-overflow: ellipsis;
}

.form-container .table-item .select-list {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 4;
    display: none;
    width: 100%;
    overflow: hidden;
    padding: calc(0.208vw + 6px) 0;
    border-bottom-right-radius: 20px;
    border-bottom-left-radius: 20px;
    transform: translateY(100%);
    background-color: #fff;
}

.form-container .table-item .selected {
    color: #999999;
}

.form-container .table-item .select-list li {
    padding-left: 1vw;
    line-height: calc(30rem / 16);
    transition: all .5s;
}

.form-container .table-item .select-list li:hover {
    background-color: #0a50a0;
    color: #fff;
}

.form-container .table-item-suggest {
    width: 100%;
}

.form-container .table-item-suggest textarea {
    width: 100%;
    padding: .5vw;
    margin-top: calc(0.521vw + 5px);
    border-radius: 10px;
    border: 1px solid #dedede;
    background-color: #f5f6fa;
}

.form-container .btn-content {
    margin-top: 2.604vw;
    text-align: center;
}

.form-container .btn-content button {
    display: inline-block;
    padding: calc(0.521vw + 10px) calc(2.604vw + 10px);
    margin: 0 auto;
    background-color: #f5f6fa;
    text-align: center;
    border: 1px solid #0a50a0;
    font-size: 14px;
    color: #0a50a0;
    transition: all .5s;
}

.form-container .btn-content button p::before {
    content: '';
    display: inline-block;
    width: 10px;
    height: 10px;
    margin-right: calc(0.833vw + 2px);
    background-color: #0a50a0;
    transition: all .5s;
}

.form-container .btn-content button:hover {
    background-color: #0a50a0;
    color: #fff;
}

.form-container .btn-content button:hover p::before {
    background-color: #fff;
}

.privacy-policy {
    padding-top: 50px;
    padding-bottom: 50px;
    margin-top: 80px;
    font-size: calc(16rem / 16);
    line-height: calc(25rem / 16);
}

.privacy-policy h1 {
    margin-bottom: 30px;
    font-size: calc(25rem / 16);
    line-height: calc(40rem / 16);
    font-weight: bold;
}

.privacy-policy h2 {
    font-size: calc(20rem / 16);
    line-height: calc(20rem / 16);
    margin-bottom: 20px;
}

.privacy-policy p {
    margin-top: 10px;
}

.login-container {
    display: flex;
    align-items: center;
    width: 100%;
    min-height: calc(100vh - 80px);
    margin-top: 80px;
    background: url('../images/login_bg.png') no-repeat center/cover;
}

.login-container .login-form {
    position: relative;
    padding: 50px;
    margin-left: auto;
    margin-right: 10%;
    background-color: #fff;
    border-radius: 20px;
}

.login-container .login-form .title {
    margin-bottom: 35px;
    font-size: calc(42rem / 16);
}

.login-container .login-form label {
    position: relative;
    display: flex;
    align-items: center;
    height: 50px;
    width: 380px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 10px;
}

.login-container .login-form .name {
    width: 4em;
    margin-left: 20px;
    border-right: 1px solid #ccc;
    font-size: 14px;
    color: #333;
}

.login-container .login-form input[type='text'],
.login-container .login-form input[type='password'] {
    flex: 1;
    padding: 0 15px;
}

.login-container .login-form label .icon {
    margin-right: 10px;
    cursor: pointer;
}

.login-container .login-form .verification input {
    width: 100%;
}

.login-container .login-form .error {
    position: absolute;
    bottom: 0;
    left: 10px;
    opacity: 0;
    transition: all .5s;
    color: #ff0000;
}

.login-container .login-form .error.to-show {
    opacity: 1;
    transform: translate(0, 100%);
}

.login-container .verification {
    display: flex;
    width: 380px;
}

.login-container .verification label {
    flex: 1;
}

.login-container .verification .pic {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 120px;
    height: 50px;
    margin-left: 10px;
    border: 1px solid #ccc;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
}

.login-container .verification label {
    flex: 1;
    width: auto;
}

.login-container input[type='submit'] {
    width: 100%;
    padding: 15px 0;
    background-color: #0a50a0;
    color: #fff;
    font-size: calc(18rem / 16);
    border-radius: 10px;
}

.login-container .tips {
    margin-top: 25px;
    font-size: 14px;
    color: #333;
    text-align: center;
}

.dialog-masking {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 4;
    /* display: flex; */
    display: none;
    align-items: center;
    justify-content: center;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, .5);
}

.dialog-masking .form-container {
    position: relative;
    width: 50%;
    min-width: 700px;
    padding-top: 60px;
    padding-bottom: calc(4.167vw + 10px);
    background-color: #f5f6fa;
    border-radius: 20px;
}

.dialog-masking .form-container .table-main {
    width: 80%;
}

.dialog-masking .form-container .close-form-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border: 2px solid #a8a8a8;
    border-radius: 50%;
    cursor: pointer;
}

.dialog-masking .form-container .close-form-btn img {
    width: 60%;
    height: 60%;
}






@keyframes visionAn {
    to {
        transform: translateY(10%);
    }
}

.transformInit {
    transform: translateX(0) !important;
}


.technology-item a.wfEditorMode {
    position: relative;
    z-index: 100;
}